home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 1998 August
/
PC Plus SuperCD 50b Issue 142 (CD142b) (August 1998).iso
/
full
/
nt
/
MSSql
/
I386
/
sqlx86.exe
/
PTK
/
SAMPLES
/
MSDTC
/
TSQL
/
UPDADR.SQL
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-04-03
|
277 b
|
10 lines
if exists (select * from sysobjects where id = object_id('dbo.update_addr') and sysstat & 0xf = 4)
drop procedure dbo.update_addr
GO
CREATE PROCEDURE update_addr(@au_id varchar(11), @addr varchar(40)) AS
update authors set address = @addr where au_id = @au_id
GO